Dynomotion

Group: DynoMotion Message: 295 From: dunncl66 Date: 4/9/2010
Subject: Scripted to keep the onboard +/- 15v active
I am having more and more success with my KFlop - KAnalog - Mach3 system now. One thins I have yet to figure out is how to keep the KFlop +/-15v bit active (#28 if I remember correctly) to get +/- 10v to my servo amps. I bet I am suppose to have some in the KFlop initialization program. Any clues what?

As always, thanks for the help.
Group: DynoMotion Message: 296 From: Tom Kerekes Date: 4/9/2010
Subject: Re: Scripted to keep the onboard +/- 15v active
With KFlop+Kanalog (unlike KMotion) the +/-15V should come on automatically during boot up.  It Kanalog's LED is on then the +/-15V should be on.
 
But if you need to set a bit during your Initialization program add a line such as:
 
SetBit(28);
 
to be sure an I/O bit is an output also add:
 
SetBitDirection(28,1);
 
Thanks
TK